{% extends 'base_dashboard.html' %} {% load site_tags %} {% block title %}Learning Path — {{ course.title }}{% endblock %} {% block content %}
← Back to course

{{ course.title }}

Learning Path — ~{{ theory_percent }}% theory · {{ practice_percent }}% practice

Progress {{ progress_percent }}% (need {{ required_percent }}%)
{{ theory_percent }}% theory
{{ practice_percent }}% practice
{% include 'includes/messages.html' %}
Modules

{% if can_take_exam %} Take Exam {% else %} {% endif %} {% if projects %}
Projects
    {% for p in projects %}
  • {{ p.title }}
    {{ p.get_submission_type_display }}
  • {% endfor %}
{% endif %} {% if mentorship_available %}
Mentorship add-on available for this Learning Path (pricing in Part 3).
{% endif %} Prefer Direct Certification instead? View my public portfolio
{% if current_module %}
{{ current_module.title }}
{{ current_module.get_content_type_display }}
{% if current_module.pk not in completed_module_ids %}
{% csrf_token %}
{% else %} Completed {% endif %}
{% if current_module.description %}

{{ current_module.description }}

{% endif %} {% if current_module.content_body %}
{{ current_module.content_body }}
{% endif %} {% if current_module.content_url %} {% endif %} {% if current_module.pdf_file %} {% endif %} {% if current_module.lessons.all %}
Lessons in this module
{% endif %} {% else %}

Select a module from the sidebar.

{% endif %}
{% endblock %}